net/http.routingNode.findChild (method)

7 uses

	net/http (current package)
		routing_tree.go#L95: 	if c := n.findChild(key); c != nil {
		routing_tree.go#L105: func (n *routingNode) findChild(key string) *routingNode {
		routing_tree.go#L122: 		if l, m := root.findChild(host).matchMethodAndPath(method, path); l != nil {
		routing_tree.go#L136: 	if l, m := n.findChild(method).matchPath(path, nil); l != nil {
		routing_tree.go#L142: 		if l, m := n.findChild("GET").matchPath(path, nil); l != nil {
		routing_tree.go#L174: 	if n, m := n.findChild(seg).matchPath(rest, matches); n != nil {
		routing_tree.go#L221: 		root.findChild(host).matchingMethodsPath(path, methodSet)